const github.com/klauspost/compress/zstd.dictMaxLength

5 uses

	github.com/klauspost/compress/zstd (current package)
		decoder_options.go#L133: 		if bits.UintSize > 32 && uint(len(content)) > dictMaxLength {
		dict.go#L27: const dictMaxLength = 1 << 31
		dict.go#L213: 	if int64(len(hist)) > dictMaxLength {
		dict.go#L214: 		return nil, fmt.Errorf("dictionary of size %d > %d", len(hist), int64(dictMaxLength))
		encoder_options.go#L363: 		if bits.UintSize > 32 && uint(len(content)) > dictMaxLength {